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
20 changed files
with
45 additions
and
45 deletions
+45
-45
examples/assignment_learning_ex.cpp
examples/assignment_learning_ex.cpp
+1
-1
examples/bayes_net_ex.cpp
examples/bayes_net_ex.cpp
+4
-4
examples/bayes_net_from_disk_ex.cpp
examples/bayes_net_from_disk_ex.cpp
+4
-4
examples/bayes_net_gui_ex.cpp
examples/bayes_net_gui_ex.cpp
+8
-8
examples/bridge_ex.cpp
examples/bridge_ex.cpp
+2
-2
examples/bsp_ex.cpp
examples/bsp_ex.cpp
+3
-3
examples/compress_stream_ex.cpp
examples/compress_stream_ex.cpp
+2
-2
examples/config_reader_ex.cpp
examples/config_reader_ex.cpp
+1
-1
examples/custom_trainer_ex.cpp
examples/custom_trainer_ex.cpp
+2
-2
examples/dir_nav_ex.cpp
examples/dir_nav_ex.cpp
+1
-1
examples/empirical_kernel_map_ex.cpp
examples/empirical_kernel_map_ex.cpp
+2
-2
examples/file_to_code_ex.cpp
examples/file_to_code_ex.cpp
+2
-2
examples/graph_labeling_ex.cpp
examples/graph_labeling_ex.cpp
+1
-1
examples/gui_api_ex.cpp
examples/gui_api_ex.cpp
+1
-1
examples/image_ex.cpp
examples/image_ex.cpp
+3
-3
examples/iosockstream_ex.cpp
examples/iosockstream_ex.cpp
+1
-1
examples/kcentroid_ex.cpp
examples/kcentroid_ex.cpp
+2
-2
examples/kkmeans_ex.cpp
examples/kkmeans_ex.cpp
+2
-2
examples/krls_ex.cpp
examples/krls_ex.cpp
+1
-1
examples/krls_filter_ex.cpp
examples/krls_filter_ex.cpp
+2
-2
No files found.
examples/assignment_learning_ex.cpp
View file @
7b43a3c6
...
@@ -26,7 +26,7 @@
...
@@ -26,7 +26,7 @@
#include <iostream>
#include <iostream>
#include
"
dlib/svm_threaded.h
"
#include
<
dlib/svm_threaded.h
>
using
namespace
std
;
using
namespace
std
;
using
namespace
dlib
;
using
namespace
dlib
;
...
...
examples/bayes_net_ex.cpp
View file @
7b43a3c6
...
@@ -37,10 +37,10 @@
...
@@ -37,10 +37,10 @@
*/
*/
#include
"
dlib/bayes_utils.h
"
#include
<
dlib/bayes_utils.h
>
#include
"
dlib/graph_utils.h
"
#include
<
dlib/graph_utils.h
>
#include
"
dlib/graph.h
"
#include
<
dlib/graph.h
>
#include
"
dlib/directed_graph.h
"
#include
<
dlib/directed_graph.h
>
#include <iostream>
#include <iostream>
...
...
examples/bayes_net_from_disk_ex.cpp
View file @
7b43a3c6
...
@@ -6,10 +6,10 @@
...
@@ -6,10 +6,10 @@
*/
*/
#include
"
dlib/bayes_utils.h
"
#include
<
dlib/bayes_utils.h
>
#include
"
dlib/graph_utils.h
"
#include
<
dlib/graph_utils.h
>
#include
"
dlib/graph.h
"
#include
<
dlib/graph.h
>
#include
"
dlib/directed_graph.h
"
#include
<
dlib/directed_graph.h
>
#include <iostream>
#include <iostream>
#include <fstream>
#include <fstream>
...
...
examples/bayes_net_gui_ex.cpp
View file @
7b43a3c6
...
@@ -21,16 +21,16 @@
...
@@ -21,16 +21,16 @@
examples and want to see a more in-depth example then by all means, continue reading. :)
examples and want to see a more in-depth example then by all means, continue reading. :)
*/
*/
#include
"
dlib/gui_widgets.h
"
#include
<
dlib/gui_widgets.h
>
#include <sstream>
#include <sstream>
#include <string>
#include <string>
#include
"
dlib/directed_graph.h
"
#include
<
dlib/directed_graph.h
>
#include
"
dlib/string.h
"
#include
<
dlib/string.h
>
#include
"
dlib/bayes_utils.h
"
#include
<
dlib/bayes_utils.h
>
#include
"
dlib/smart_pointers.h
"
#include
<
dlib/smart_pointers.h
>
#include
"
dlib/set.h
"
#include
<
dlib/set.h
>
#include
"
dlib/graph_utils.h
"
#include
<
dlib/graph_utils.h
>
#include
"
dlib/stl_checked.h
"
#include
<
dlib/stl_checked.h
>
using
namespace
std
;
using
namespace
std
;
...
...
examples/bridge_ex.cpp
View file @
7b43a3c6
...
@@ -45,8 +45,8 @@
...
@@ -45,8 +45,8 @@
*/
*/
#include
"
dlib/bridge.h
"
#include
<
dlib/bridge.h
>
#include
"
dlib/type_safe_union.h
"
#include
<
dlib/type_safe_union.h
>
#include <iostream>
#include <iostream>
using
namespace
dlib
;
using
namespace
dlib
;
...
...
examples/bsp_ex.cpp
View file @
7b43a3c6
...
@@ -41,9 +41,9 @@
...
@@ -41,9 +41,9 @@
#include
"
dlib/cmd_line_parser.h
"
#include
<
dlib/cmd_line_parser.h
>
#include
"
dlib/bsp.h
"
#include
<
dlib/bsp.h
>
#include
"
dlib/matrix.h
"
#include
<
dlib/matrix.h
>
#include <iostream>
#include <iostream>
...
...
examples/compress_stream_ex.cpp
View file @
7b43a3c6
...
@@ -25,8 +25,8 @@
...
@@ -25,8 +25,8 @@
#include
"
dlib/compress_stream.h
"
#include
<
dlib/compress_stream.h
>
#include
"
dlib/cmd_line_parser.h
"
#include
<
dlib/cmd_line_parser.h
>
#include <iostream>
#include <iostream>
#include <fstream>
#include <fstream>
#include <string>
#include <string>
...
...
examples/config_reader_ex.cpp
View file @
7b43a3c6
...
@@ -9,7 +9,7 @@
...
@@ -9,7 +9,7 @@
*/
*/
#include
"
dlib/config_reader.h
"
#include
<
dlib/config_reader.h
>
#include <iostream>
#include <iostream>
#include <fstream>
#include <fstream>
#include <vector>
#include <vector>
...
...
examples/custom_trainer_ex.cpp
View file @
7b43a3c6
...
@@ -19,12 +19,12 @@
...
@@ -19,12 +19,12 @@
"lower_right"
"lower_right"
*/
*/
#include
"
dlib/svm.h
"
#include
<
dlib/svm.h
>
#include <iostream>
#include <iostream>
#include <vector>
#include <vector>
#include
"
dlib/rand.h
"
#include
<
dlib/rand.h
>
using
namespace
std
;
using
namespace
std
;
using
namespace
dlib
;
using
namespace
dlib
;
...
...
examples/dir_nav_ex.cpp
View file @
7b43a3c6
...
@@ -10,7 +10,7 @@
...
@@ -10,7 +10,7 @@
#include <iostream>
#include <iostream>
#include <iomanip>
#include <iomanip>
#include
"
dlib/dir_nav.h
"
#include
<
dlib/dir_nav.h
>
#include <vector>
#include <vector>
#include <algorithm>
#include <algorithm>
...
...
examples/empirical_kernel_map_ex.cpp
View file @
7b43a3c6
...
@@ -65,8 +65,8 @@
...
@@ -65,8 +65,8 @@
#include
"
dlib/svm.h
"
#include
<
dlib/svm.h
>
#include
"
dlib/rand.h
"
#include
<
dlib/rand.h
>
#include <iostream>
#include <iostream>
#include <vector>
#include <vector>
...
...
examples/file_to_code_ex.cpp
View file @
7b43a3c6
...
@@ -15,8 +15,8 @@
...
@@ -15,8 +15,8 @@
#include <sstream>
#include <sstream>
#include <string>
#include <string>
#include <cstdlib>
#include <cstdlib>
#include
"
dlib/compress_stream.h
"
#include
<
dlib/compress_stream.h
>
#include
"
dlib/base64.h
"
#include
<
dlib/base64.h
>
using
namespace
std
;
using
namespace
std
;
...
...
examples/graph_labeling_ex.cpp
View file @
7b43a3c6
...
@@ -36,7 +36,7 @@
...
@@ -36,7 +36,7 @@
structural_graph_labeling_trainer.
structural_graph_labeling_trainer.
*/
*/
#include
"
dlib/svm_threaded.h
"
#include
<
dlib/svm_threaded.h
>
#include <iostream>
#include <iostream>
using
namespace
std
;
using
namespace
std
;
...
...
examples/gui_api_ex.cpp
View file @
7b43a3c6
...
@@ -12,7 +12,7 @@
...
@@ -12,7 +12,7 @@
#include
"
dlib/gui_widgets.h
"
#include
<
dlib/gui_widgets.h
>
#include <sstream>
#include <sstream>
#include <string>
#include <string>
...
...
examples/image_ex.cpp
View file @
7b43a3c6
...
@@ -12,9 +12,9 @@
...
@@ -12,9 +12,9 @@
#include
"
dlib/gui_widgets.h
"
#include
<
dlib/gui_widgets.h
>
#include
"
dlib/image_io.h
"
#include
<
dlib/image_io.h
>
#include
"
dlib/image_transforms.h
"
#include
<
dlib/image_transforms.h
>
#include <fstream>
#include <fstream>
...
...
examples/iosockstream_ex.cpp
View file @
7b43a3c6
...
@@ -13,7 +13,7 @@
...
@@ -13,7 +13,7 @@
http://www.jmarshall.com/easy/http/
http://www.jmarshall.com/easy/http/
*/
*/
#include
"
dlib/iosockstream.h
"
#include
<
dlib/iosockstream.h
>
#include <iostream>
#include <iostream>
using
namespace
std
;
using
namespace
std
;
...
...
examples/kcentroid_ex.cpp
View file @
7b43a3c6
...
@@ -17,8 +17,8 @@
...
@@ -17,8 +17,8 @@
#include <iostream>
#include <iostream>
#include <vector>
#include <vector>
#include
"
dlib/svm.h
"
#include
<
dlib/svm.h
>
#include
"
dlib/statistics.h
"
#include
<
dlib/statistics.h
>
using
namespace
std
;
using
namespace
std
;
using
namespace
dlib
;
using
namespace
dlib
;
...
...
examples/kkmeans_ex.cpp
View file @
7b43a3c6
...
@@ -22,8 +22,8 @@
...
@@ -22,8 +22,8 @@
#include <iostream>
#include <iostream>
#include <vector>
#include <vector>
#include
"
dlib/clustering.h
"
#include
<
dlib/clustering.h
>
#include
"
dlib/rand.h
"
#include
<
dlib/rand.h
>
using
namespace
std
;
using
namespace
std
;
using
namespace
dlib
;
using
namespace
dlib
;
...
...
examples/krls_ex.cpp
View file @
7b43a3c6
...
@@ -11,7 +11,7 @@
...
@@ -11,7 +11,7 @@
#include <iostream>
#include <iostream>
#include <vector>
#include <vector>
#include
"
dlib/svm.h
"
#include
<
dlib/svm.h
>
using
namespace
std
;
using
namespace
std
;
using
namespace
dlib
;
using
namespace
dlib
;
...
...
examples/krls_filter_ex.cpp
View file @
7b43a3c6
...
@@ -10,8 +10,8 @@
...
@@ -10,8 +10,8 @@
#include <iostream>
#include <iostream>
#include
"
dlib/svm.h
"
#include
<
dlib/svm.h
>
#include
"
dlib/rand.h
"
#include
<
dlib/rand.h
>
using
namespace
std
;
using
namespace
std
;
using
namespace
dlib
;
using
namespace
dlib
;
...
...
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