Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
OpenDAS
dlib
Commits
7b43a3c6
Commit
7b43a3c6
authored
Dec 08, 2012
by
Davis King
Browse files
All I did in this change was switch from using #include "" syntax
to #include <> syntax.
parent
953fbe17
Changes
63
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
11 additions
and
11 deletions
+11
-11
examples/train_object_detector.cpp
examples/train_object_detector.cpp
+9
-9
examples/using_custom_kernels_ex.cpp
examples/using_custom_kernels_ex.cpp
+1
-1
examples/xml_parser_ex.cpp
examples/xml_parser_ex.cpp
+1
-1
No files found.
examples/train_object_detector.cpp
View file @
7b43a3c6
...
...
@@ -59,15 +59,15 @@
*/
#include
"
dlib/svm_threaded.h
"
#include
"
dlib/string.h
"
#include
"
dlib/gui_widgets.h
"
#include
"
dlib/array.h
"
#include
"
dlib/array2d.h
"
#include
"
dlib/image_keypoint.h
"
#include
"
dlib/image_processing.h
"
#include
"
dlib/data_io.h
"
#include
"
dlib/cmd_line_parser.h
"
#include
<
dlib/svm_threaded.h
>
#include
<
dlib/string.h
>
#include
<
dlib/gui_widgets.h
>
#include
<
dlib/array.h
>
#include
<
dlib/array2d.h
>
#include
<
dlib/image_keypoint.h
>
#include
<
dlib/image_processing.h
>
#include
<
dlib/data_io.h
>
#include
<
dlib/cmd_line_parser.h
>
#include <iostream>
...
...
examples/using_custom_kernels_ex.cpp
View file @
7b43a3c6
...
...
@@ -12,7 +12,7 @@
#include <iostream>
#include
"
dlib/svm.h
"
#include
<
dlib/svm.h
>
using
namespace
std
;
using
namespace
dlib
;
...
...
examples/xml_parser_ex.cpp
View file @
7b43a3c6
...
...
@@ -11,7 +11,7 @@
#include
"
dlib/xml_parser.h
"
#include
<
dlib/xml_parser.h
>
#include <iostream>
#include <fstream>
...
...
Prev
1
2
3
4
Next
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment