diff options
Diffstat (limited to 'cpp/src/IceGrid/FileParserI.h')
-rwxr-xr-x | cpp/src/IceGrid/FileParserI.h | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/cpp/src/IceGrid/FileParserI.h b/cpp/src/IceGrid/FileParserI.h new file mode 100755 index 00000000000..1d81beeb7f1 --- /dev/null +++ b/cpp/src/IceGrid/FileParserI.h @@ -0,0 +1,23 @@ +// **********************************************************************
+//
+// Copyright (c) 2003-2006 ZeroC, Inc. All rights reserved.
+//
+// This copy of Ice is licensed to you under the terms described in the
+// ICE_LICENSE file included in this distribution.
+//
+// **********************************************************************
+
+#ifndef ICE_GRID_FILE_PARSERI_H
+#define ICE_GRID_FILE_PARSERI_H
+
+#include <IceGrid/FileParser.h>
+
+class FileParserI : public IceGrid::FileParser
+{
+public:
+
+ IceGrid::ApplicationDescriptor
+ parse(const std::string& file, const IceGrid::AdminPrx& admin, const Ice::Current&);
+};
+
+#endif
|