diff options
author | Mark Spruiell <mes@zeroc.com> | 2004-04-27 20:02:18 +0000 |
---|---|---|
committer | Mark Spruiell <mes@zeroc.com> | 2004-04-27 20:02:18 +0000 |
commit | deb342fe078cc6b5bb2574e11e464c02cf15f29c (patch) | |
tree | d537a5deaeee62eec8f40348fbcf43f7a7e883a3 /cpp/src/slice2wsdl/Gen.h | |
parent | Bug fix (diff) | |
download | ice-deb342fe078cc6b5bb2574e11e464c02cf15f29c.tar.bz2 ice-deb342fe078cc6b5bb2574e11e464c02cf15f29c.tar.xz ice-deb342fe078cc6b5bb2574e11e464c02cf15f29c.zip |
removing slice2wsdl
Diffstat (limited to 'cpp/src/slice2wsdl/Gen.h')
-rw-r--r-- | cpp/src/slice2wsdl/Gen.h | 63 |
1 files changed, 0 insertions, 63 deletions
diff --git a/cpp/src/slice2wsdl/Gen.h b/cpp/src/slice2wsdl/Gen.h deleted file mode 100644 index d08ab203f29..00000000000 --- a/cpp/src/slice2wsdl/Gen.h +++ /dev/null @@ -1,63 +0,0 @@ -// ********************************************************************** -// -// Copyright (c) 2003 -// ZeroC, Inc. -// Billerica, MA, USA -// -// All Rights Reserved. -// -// Ice is free software; you can redistribute it and/or modify it under -// the terms of the GNU General Public License version 2 as published by -// the Free Software Foundation. -// -// ********************************************************************** - -#ifndef GEN_H -#define GEN_H - -#include <Slice/Parser.h> -#include <stack> - -namespace IceUtil -{ - -class XMLOutput; - -} - -namespace Slice -{ - -class Gen : public ::IceUtil::noncopyable, public ParserVisitor -{ -public: - - Gen(const std::string&, - const std::string&, - const std::string&, - const std::vector<std::string>&, - const std::string&); - virtual ~Gen(); - - virtual bool visitClassDefStart(const ClassDefPtr&); - -private: - - void emitMessage(::IceUtil::XMLOutput&, const OperationPtr&); - void emitOperation(::IceUtil::XMLOutput&, const OperationPtr&); - - void printHeader(::IceUtil::XMLOutput&); - - std::string containedToId(const ContainedPtr&); - - std::string _name; - std::string _base; - std::string _include; - std::string _orgName; - std::vector<std::string> _includePaths; - std::string _dir; -}; - -} - -#endif |