summaryrefslogtreecommitdiff
path: root/TAO/CIAO/CCF/CCF/CodeGenerationKit/CommandLineParser.cpp
diff options
context:
space:
mode:
authorboris <boris@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2003-07-29 21:02:58 +0000
committerboris <boris@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2003-07-29 21:02:58 +0000
commitbc9425eb0f9b08fe462d6083041a319a7b41af75 (patch)
tree76b281796c69e1a1a4dc34d3ed4b134f8be5f9ae /TAO/CIAO/CCF/CCF/CodeGenerationKit/CommandLineParser.cpp
parent6ecbc48d799a39d98a992c0c86e9563bcf4e14f4 (diff)
downloadATCD-CCF.tar.gz
ChangeLogTag: Tue Jul 29 15:36:20 2003 Boris Kolpackov <boris@dre.vanderbilt.edu>CCF
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;