summaryrefslogtreecommitdiff
path: root/TAO/CIAO/CCF/CCF/CodeGenerationKit/CommandLineParser.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/CIAO/CCF/CCF/CodeGenerationKit/CommandLineParser.cpp')
-rw-r--r--TAO/CIAO/CCF/CCF/CodeGenerationKit/CommandLineParser.cpp6
1 files changed, 5 insertions, 1 deletions
diff --git a/TAO/CIAO/CCF/CCF/CodeGenerationKit/CommandLineParser.cpp b/TAO/CIAO/CCF/CCF/CodeGenerationKit/CommandLineParser.cpp
index 0394f895669..629d954aa84 100644
--- a/TAO/CIAO/CCF/CCF/CodeGenerationKit/CommandLineParser.cpp
+++ b/TAO/CIAO/CCF/CCF/CodeGenerationKit/CommandLineParser.cpp
@@ -5,6 +5,8 @@
#include "CCF/CodeGenerationKit/CommandLineParser.hpp"
#include "CCF/CodeGenerationKit/CommandLineGrammar.hpp"
+#include <vector>
+#include <string>
#include <iostream>
using std::cerr;
@@ -12,7 +14,9 @@ using std::endl;
bool parse (int argc, char* argv[], CommandLine& cl) throw ()
{
- typedef vector<string> Argv;
+ typedef
+ std::vector<std::string>
+ Argv;
Argv v;