From 03154c9a5b9e8628d31bd9032549327d51304645 Mon Sep 17 00:00:00 2001 From: nobody Date: Mon, 30 Aug 1999 19:34:27 +0000 Subject: This commit was manufactured by cvs2svn to create tag 'pre_multiple_profile_server'. --- ace/Method_Request.h | 61 ---------------------------------------------------- 1 file changed, 61 deletions(-) delete mode 100644 ace/Method_Request.h (limited to 'ace/Method_Request.h') diff --git a/ace/Method_Request.h b/ace/Method_Request.h deleted file mode 100644 index 5b9ab460f0e..00000000000 --- a/ace/Method_Request.h +++ /dev/null @@ -1,61 +0,0 @@ -/* -*- C++ -*- */ -// $Id$ - -// ============================================================================ -// -// = LIBRARY -// ace -// -// = FILENAME -// Method_Request.h -// -// = AUTHOR -// Andres Kruse and Douglas C. Schmidt -// -// -// ============================================================================ - -#ifndef ACE_METHOD_REQUEST_H -#define ACE_METHOD_REQUEST_H - -#include "ace/OS.h" - -#if !defined (ACE_LACKS_PRAGMA_ONCE) -# pragma once -#endif /* ACE_LACKS_PRAGMA_ONCE */ - -class ACE_Export ACE_Method_Request -{ - // = TITLE - // Reifies a method into a request. Subclasses provide - // the necessary state and behavior. - // - // = DESCRIPTION - // A is inserted in the , - // where it is subsequently removed by a , which - // invokes the method. -public: - // = Initialization and termination methods. - ACE_Method_Request (u_long priority = 0); - // Constructor. - - virtual ~ACE_Method_Request (void); - // Destructor. - - // = Accessors. - u_long priority (void); - // Get priority. - - void priority (u_long); - // Set priority. - - // = Invocation method (must be overridden by subclasses). - virtual int call (void) = 0; - // Invoked when the is scheduled to run. - -protected: - u_long priority_; - // The priority of the request. -}; - -#endif /* ACE_METHOD_REQUEST_H */ -- cgit v1.2.1