diff options
author | Bernard Normier <bernard@zeroc.com> | 2006-03-31 04:29:47 +0000 |
---|---|---|
committer | Bernard Normier <bernard@zeroc.com> | 2006-03-31 04:29:47 +0000 |
commit | 66a0681bdb76416f73c242d40c228ba61182ec2c (patch) | |
tree | 8cfd2ab1a6049e79e76ecc0fcc72bae322e7ef5c /cpp/src/IceGrid/FileParserI.h | |
parent | fixing IceSSL properties (diff) | |
download | ice-66a0681bdb76416f73c242d40c228ba61182ec2c.tar.bz2 ice-66a0681bdb76416f73c242d40c228ba61182ec2c.tar.xz ice-66a0681bdb76416f73c242d40c228ba61182ec2c.zip |
Added --server option to icegridadmin
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
|