summaryrefslogtreecommitdiff
path: root/CIAO/tests/DAnCE/Components/SimpleAttribute.idl
blob: 21f233d4093e5f281d833ead453dbeaa95711d4b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#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*/