Main Page   Namespace List   Class Hierarchy   Alphabetical List   Compound List   File List   Namespace Members   Compound Members   File Members  

SubjectManager.idl

Go to the documentation of this file.
00001 /***************** <Tweek heading BEGIN do not edit this line> ****************
00002  * Tweek
00003  *
00004  * -----------------------------------------------------------------
00005  * File:          $RCSfile: SubjectManager.idl,v $
00006  * Date modified: $Date: 2003/12/05 21:51:55 $
00007  * Version:       $Revision: 1.11 $
00008  * -----------------------------------------------------------------
00009  ***************** <Tweek heading END do not edit this line> *****************/
00010 
00011 /*************** <auto-copyright.pl BEGIN do not edit this line> **************
00012  *
00013  * VR Juggler is (C) Copyright 1998-2003 by Iowa State University
00014  *
00015  * Original Authors:
00016  *   Allen Bierbaum, Christopher Just,
00017  *   Patrick Hartling, Kevin Meinert,
00018  *   Carolina Cruz-Neira, Albert Baker
00019  *
00020  * This library is free software; you can redistribute it and/or
00021  * modify it under the terms of the GNU Library General Public
00022  * License as published by the Free Software Foundation; either
00023  * version 2 of the License, or (at your option) any later version.
00024  *
00025  * This library is distributed in the hope that it will be useful,
00026  * but WITHOUT ANY WARRANTY; without even the implied warranty of
00027  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
00028  * Library General Public License for more details.
00029  *
00030  * You should have received a copy of the GNU Library General Public
00031  * License along with this library; if not, write to the
00032  * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
00033  * Boston, MA 02111-1307, USA.
00034  *
00035  *************** <auto-copyright.pl END do not edit this line> ***************/
00036 
00037 #ifndef _TWEEK_SUBJECT_MANAGER_IDL_
00038 #define _TWEEK_SUBJECT_MANAGER_IDL_
00039 
00040 #include <tweek/idl/Subject.idl>
00041 
00042 
00043 module tweek
00044 {
00045 
00052 interface SubjectManager
00053 {
00058    struct RegisteredSubject
00059    {
00060       string  subject_name;  
00061       Subject subject_ref;   
00062    };
00063 
00068    struct SubjectMgrInfoItem
00069    {
00070       string key;
00071       string value;
00072    };
00073 
00075    typedef sequence<RegisteredSubject> SubjectList;
00076 
00080    typedef sequence<SubjectMgrInfoItem> SubjectManagerInfoList;
00081 
00091    Subject getSubject(in string name);
00092 
00100    SubjectList getAllSubjects();
00101 
00109    SubjectManagerInfoList getInfo();
00110 
00119    string getName();
00120 };
00121 
00122 };
00123 
00124 #endif /* _TWEEK_SUBJECT_MANAGER_IDL_ */

Generated on Sun May 2 14:41:03 2004 for Tweek by doxygen1.2.14 written by Dimitri van Heesch, © 1997-2002