summaryrefslogtreecommitdiff
path: root/modules/CIAO/DAnCE/tests/CIAO/Components/SimpleAttribute.idl
blob: 7d41978b4dea11f2221d59c1e58f0d2a190cdc0c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
// $Id$

#ifndef SIMPLE_ATTRIBUTE_IDL
#define SIMPLE_ATTRIBUTE_IDL

#include "Components.idl"

module Simple
{
  component SimpleAttribute
  {
    attribute string str_attr;
    attribute long long_attr;
    attribute short short_attr;
  };
  
  home SimpleAttributeHome manages SimpleAttribute
  {
    attribute string str_attr;
    attribute long long_attr;
    attribute short short_attr;
  };
};

#endif /*SIMPLE_ATTRIBUTE_IDL*/