Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Changeset 9716 in orxonox.OLD for branches/new_class_id/src/lib/lang


Ignore:
Timestamp:
Sep 1, 2006, 8:16:15 PM (18 years ago)
Author:
bensch
Message:

more renamings

Location:
branches/new_class_id/src/lib/lang
Files:
3 edited
4 moved

Legend:

Unmodified
Added
Removed
  • branches/new_class_id/src/lib/lang/Makefile.am

    r9684 r9716  
    99libORXlang_a_SOURCES = \
    1010                base_object.cc \
    11                 new_class_id.cc \
    12                 new_object_list.cc
     11                class_id.cc \
     12                object_list.cc
    1313
    1414noinst_HEADERS = \
    1515                base_object.h \
    16                 new_class_id.h \
    17                 new_object_list.h
     16                class_id.h \
     17                object_list.h
    1818
    1919
  • branches/new_class_id/src/lib/lang/base_object.h

    r9715 r9716  
    1414#define __BASE_OBJECT_H_
    1515
    16 #include "new_object_list.h"
     16#include "object_list.h"
    1717#include "sigslot/slot.h"
    1818
  • branches/new_class_id/src/lib/lang/class_id.cc

    r9715 r9716  
    1616//#define DEBUG_SPECIAL_MODULE DEBUG_MODULE_
    1717
    18 #include "new_class_id.h"
    19 #include "new_object_list.h"
     18#include "class_id.h"
     19#include "object_list.h"
    2020
    2121/**
  • branches/new_class_id/src/lib/lang/class_id.h

    r9715 r9716  
    11/*!
    2  * @file new_class_id.h
     2 * @file class_id.h
    33 * @brief Definition of a dynamically allocating ClassID
    44 *
    55 */
    66
    7 #ifndef _NEW_CLASS_ID_H
    8 #define _NEW_CLASS_ID_H
     7#ifndef _CLASS_ID_H
     8#define _CLASS_ID_H
    99
    1010#include <string>
     
    7474};
    7575
    76 #endif /* _NEW_CLASS_ID_H */
     76#endif /* _CLASS_ID_H */
  • branches/new_class_id/src/lib/lang/object_list.cc

    r9715 r9716  
    1616//#define DEBUG_SPECIAL_MODULE DEBUG_MODULE_
    1717
    18 #include "new_object_list.h"
     18#include "object_list.h"
    1919#include <cassert>
    2020
  • branches/new_class_id/src/lib/lang/object_list.h

    r9715 r9716  
    11/*!
    2  * @file new_object_list.h
     2 * @file object_list.h
    33 * @brief Definition of a dynamically allocating ClassID
    44 *
    55 */
    66
    7 #ifndef _NEW_OBJECT_LIST_H
    8 #define _NEW_OBJECT_LIST_H
    9 
    10 #include "new_class_id.h"
     7#ifndef _OBJECT_LIST_H
     8#define _OBJECT_LIST_H
     9
     10#include "class_id.h"
    1111#include <cassert>
    1212#include <map>
     
    331331}
    332332
    333 #endif /* _NEW_OBJECT_LIST_H */
     333#endif /* _OBJECT_LIST_H */
  • branches/new_class_id/src/lib/lang/test_object_list.cc

    r9715 r9716  
    1 #include "new_class_id.h"
    2 #include "new_object_list.h"
     1#include "class_id.h"
     2#include "object_list.h"
    33#include <iostream>
    44
Note: See TracChangeset for help on using the changeset viewer.