~ubuntu-branches/ubuntu/breezy/ace/breezy

« back to all changes in this revision

Viewing changes to TAO/orbsvcs/orbsvcs/IFRService/FinderDef_i.h

  • Committer: Bazaar Package Importer
  • Author(s): Adam Conrad, Benjamin Montgomery, Adam Conrad
  • Date: 2005-09-18 22:51:38 UTC
  • mfrom: (1.2.1 upstream) (2.1.1 sarge) (0.1.2 woody)
  • Revision ID: james.westby@ubuntu.com-20050918225138-seav22q6fyylb536
Tags: 5.4.7-3ubuntu1
[ Benjamin Montgomery ]
* Added a patch for amd64 and powerpc that disables the compiler
  option -fvisibility-inlines-hidden

[ Adam Conrad ]
* Added DPATCH_OPTION_CPP=1 to debian/patches/00options to make
  Benjamin's above changes work correctly with dpatch.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/* -*- C++ -*- */
2
 
// FinderDef_i.h,v 1.4 2003/06/08 15:26:07 parsons Exp
3
 
 
4
 
// ============================================================================
5
 
//
6
 
// = LIBRARY
7
 
//    TAO/orbsvcs/orbsvcs/IFRService
8
 
//
9
 
// = FILENAME
10
 
//    FinderDef_i.h
11
 
//
12
 
// = DESCRIPTION
13
 
//    FinderDef servant class.
14
 
//
15
 
// = AUTHOR
16
 
//    Jeff Parsons <parsons@cs.wustl.edu>
17
 
//
18
 
// ============================================================================
19
 
 
20
 
#ifndef TAO_FINDERDEF_I_H
21
 
#define TAO_FINDERDEF_I_H
22
 
 
23
 
#include "OperationDef_i.h"
24
 
#include "ifr_service_export.h"
25
 
 
26
 
#if !defined (ACE_LACKS_PRAGMA_ONCE)
27
 
# pragma once
28
 
#endif /* ACE_LACKS_PRAGMA_ONCE */
29
 
 
30
 
#if defined(_MSC_VER)
31
 
#if (_MSC_VER >= 1200)
32
 
#pragma warning(push)
33
 
#endif /* _MSC_VER >= 1200 */
34
 
#pragma warning(disable:4250)
35
 
#endif /* _MSC_VER */
36
 
 
37
 
class TAO_IFRService_Export TAO_FinderDef_i : public virtual TAO_OperationDef_i
38
 
{
39
 
  // = TITLE
40
 
  //    TAO_FinderDef_i
41
 
  //
42
 
  // = DESCRIPTION
43
 
  //    Represents the definition of a finder operation in a home.
44
 
  //
45
 
public:
46
 
  TAO_FinderDef_i (TAO_Repository_i *repo);
47
 
  // Constructor
48
 
 
49
 
  virtual ~TAO_FinderDef_i (void);
50
 
  // Destructor
51
 
 
52
 
  virtual CORBA::DefinitionKind def_kind (
53
 
      ACE_ENV_SINGLE_ARG_DECL_WITH_DEFAULTS
54
 
    )
55
 
    ACE_THROW_SPEC ((CORBA::SystemException));
56
 
  // Return our definition kind.
57
 
};
58
 
 
59
 
#if defined(_MSC_VER) && (_MSC_VER >= 1200)
60
 
#pragma warning(pop)
61
 
#endif /* _MSC_VER */
62
 
 
63
 
#endif /* TAO_FINDERDEF_I_H */
64
 
 
65
 
 
66
 
 
67