#ifndef CONNECTION_VALIDATION_12_15_2006 #define CONNECTION_VALIDATION_12_15_2006 /** @class ConnValidationStr.h @author Brian Magill @date 12/15/2006 $Date:$ $Revision:$ @copyright (©) Copyright 2006 by GATS Inc. 11864 Canon Blvd., Suite 101, Newport News, VA 23606 All Rights Reserved. No part of this software or publication may be reproduced, stored in a retrieval system, or transmitted, in any form or by any means, electronic, mechanical, photocopying, recording, or otherwise without the prior written permission of GATS Inc. @brief An attempt at ensuring that the "static data" event object is used */ #include class ConnValidationStr { private: std::string magicWord; ConnValidationStr(ConnValidationStr const &rhs); ConnValidationStr & operator=(ConnValidationStr const &rhs); public: ConnValidationStr():magicWord("StaticEventObject_12_15_2006"){ }; ~ConnValidationStr() { }; std::string operator()() const { return magicWord; }; }; #endif