summaryrefslogtreecommitdiff
path: root/TAO/tao/PortableServer/LifespanStrategy.h
diff options
context:
space:
mode:
authorWilliam R. Otte <wotte@dre.vanderbilt.edu>2006-07-24 15:50:11 +0000
committerWilliam R. Otte <wotte@dre.vanderbilt.edu>2006-07-24 15:50:11 +0000
commit6b846cf03c0bcbd8c276cb0af61a181e5f98eaae (patch)
treeda50d054f9c761c3f6a5923f6979e93306c56d68 /TAO/tao/PortableServer/LifespanStrategy.h
parent0e555b9150d38e3b3473ba325b56db2642e6352b (diff)
downloadATCD-6b846cf03c0bcbd8c276cb0af61a181e5f98eaae.tar.gz
Repo restructuring
Diffstat (limited to 'TAO/tao/PortableServer/LifespanStrategy.h')
-rw-r--r--TAO/tao/PortableServer/LifespanStrategy.h89
1 files changed, 0 insertions, 89 deletions
diff --git a/TAO/tao/PortableServer/LifespanStrategy.h b/TAO/tao/PortableServer/LifespanStrategy.h
deleted file mode 100644
index 895c20335d8..00000000000
--- a/TAO/tao/PortableServer/LifespanStrategy.h
+++ /dev/null
@@ -1,89 +0,0 @@
-// -*- C++ -*-
-
-//=============================================================================
-/**
- * @file LifespanStrategy.h
- *
- * $Id$
- *
- * @author Johnny Willemsen <jwillemsen@remedy.nl>
- */
-//=============================================================================
-
-#ifndef TAO_PORTABLESERVER_LIFESPANPOLICY_H
-#define TAO_PORTABLESERVER_LIFESPANPOLICY_H
-#include /**/ "ace/pre.h"
-
-#include "tao/PortableServer/Policy_Strategy.h"
-
-#if !defined (ACE_LACKS_PRAGMA_ONCE)
-# pragma once
-#endif /* ACE_LACKS_PRAGMA_ONCE */
-
-#include "tao/PortableServer/LifespanPolicyC.h"
-#include "tao/Object_KeyC.h"
-
-TAO_BEGIN_VERSIONED_NAMESPACE_DECL
-
-namespace TAO
-{
- namespace Portable_Server
- {
- class Temporary_Creation_Time;
-
- class LifespanStrategy
- : public Policy_Strategy
- {
- public:
- LifespanStrategy (void);
-
- virtual void strategy_init(TAO_Root_POA *poa ACE_ENV_ARG_DECL);
-
- virtual void strategy_cleanup(ACE_ENV_SINGLE_ARG_DECL);
-
- void create (const char *name, const TAO::ObjectKey &key);
-
- virtual void notify_startup (ACE_ENV_SINGLE_ARG_DECL) = 0;
-
- virtual void notify_shutdown (ACE_ENV_SINGLE_ARG_DECL) = 0;
-
- /**
- * Validate the passed object key if it belongs to this POA.
- */
- bool validate (TAO::ObjectKey_var& key);
-
- /**
- * Returns the length of the key type
- */
- virtual CORBA::ULong key_length (void) const = 0;
-
- CORBA::ULong key_type_length (void) const;
-
- /// Do we have set persistent or not,
- virtual CORBA::Boolean is_persistent (void) const = 0;
-
- virtual void create_key (CORBA::Octet *buffer, CORBA::ULong& starting_at) = 0;
-
- /// Validate whether this matches the set lifespan strategy
- virtual bool validate (
- CORBA::Boolean is_persistent,
- const TAO::Portable_Server::Temporary_Creation_Time& creation_time) const = 0;
-
- /// Check the state of the POA.
- virtual void check_state (ACE_ENV_SINGLE_ARG_DECL) = 0;
-
- virtual ::PortableServer::LifespanPolicyValue type() const = 0;
-
- virtual bool use_imr () const = 0;
-
- protected:
- TAO_Root_POA *poa_;
- };
-
- } /* namespace Portable_Server */
-} /* namespace TAO */
-
-TAO_END_VERSIONED_NAMESPACE_DECL
-
-#include /**/ "ace/post.h"
-#endif /* TAO_PORTABLESERVER_LIFESPANPOLICY_H */