diff options
Diffstat (limited to 'cpp/demo/Freeze/library/BookFactory.h')
-rw-r--r-- | cpp/demo/Freeze/library/BookFactory.h | 66 |
1 files changed, 33 insertions, 33 deletions
diff --git a/cpp/demo/Freeze/library/BookFactory.h b/cpp/demo/Freeze/library/BookFactory.h index 677fc77e3bc..58a95f2d8e5 100644 --- a/cpp/demo/Freeze/library/BookFactory.h +++ b/cpp/demo/Freeze/library/BookFactory.h @@ -1,33 +1,33 @@ -// **********************************************************************
-//
-// Copyright (c) 2001
-// MutableRealms, Inc.
-// Huntsville, AL, USA
-//
-// All Rights Reserved
-//
-// **********************************************************************
-
-#ifndef BOOK_FACTORY_H
-#define BOOK_FACTORY_H
-
-#include <LibraryI.h>
-
-class BookFactory : virtual public Ice::ObjectFactory
-{
-public:
-
- BookFactory(const LibraryIPtr&);
-
- //
- // Operations from ObjectFactory
- //
- virtual Ice::ObjectPtr create(const std::string&);
- virtual void destroy();
-
-private:
-
- LibraryIPtr _library;
-};
-
-#endif
+// ********************************************************************** +// +// Copyright (c) 2001 +// MutableRealms, Inc. +// Huntsville, AL, USA +// +// All Rights Reserved +// +// ********************************************************************** + +#ifndef BOOK_FACTORY_H +#define BOOK_FACTORY_H + +#include <LibraryI.h> + +class BookFactory : virtual public Ice::ObjectFactory +{ +public: + + BookFactory(const LibraryIPtr&); + + // + // Operations from ObjectFactory + // + virtual Ice::ObjectPtr create(const std::string&); + virtual void destroy(); + +private: + + LibraryIPtr _library; +}; + +#endif |