Changeset 37


Ignore:
Timestamp:
Aug 12, 2005 5:36:35 PM (18 years ago)
Author:
dkearney
Message:

adding initial rappture core data structures different types of variables

Location:
trunk/src/core
Files:
7 added
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/core/RpDict.cc

    r20 r37  
    1 /*
     1
     2/*
     3 * because templates are compiled on demand the interface and the
     4 * implementation in different files. they must both be included
     5 * when compiling a file that wants to use the template.
     6 *
    27#ifndef _RpDICT_H
    3     #include "../include/RpDict.h"
     8    #include "RpDict.h"
    49#endif
    510*/
     11
    612
    713/**************************************************************************/
  • trunk/src/core/make.inc

    r33 r37  
    77$(WORK_DIR)/RpDict.o: $(SRC_DIR)/RpDict.cc
    88        $(CPP) -fPIC $(DEBUG) $(INCL_CORE) -o $@ -c $?
     9
     10$(WORK_DIR)/RpVariable.o: $(SRC_DIR)/RpVariable.cc
     11        $(CPP) -fPIC $(DEBUG) $(INCL_CORE) -o $@ -c $?
     12
     13$(WORK_DIR)/RpNumber.o: $(SRC_DIR)/RpNumber.cc
     14        $(CPP) -fPIC $(DEBUG) $(INCL_CORE) -o $@ -c $?
     15
     16$(WORK_DIR)/RpString.o: $(SRC_DIR)/RpString.cc
     17        $(CPP) -fPIC $(DEBUG) $(INCL_CORE) -o $@ -c $?
     18
     19$(WORK_DIR)/RpChoice.o: $(SRC_DIR)/RpChoice.cc
     20        $(CPP) -fPIC $(DEBUG) $(INCL_CORE) -o $@ -c $?
     21
     22$(WORK_DIR)/RpBoolean.o: $(SRC_DIR)/RpBoolean.cc
     23        $(CPP) -fPIC $(DEBUG) $(INCL_CORE) -o $@ -c $?
     24
     25$(WORK_DIR)/RpOption.o: $(SRC_DIR)/RpOption.cc
     26        $(CPP) -fPIC $(DEBUG) $(INCL_CORE) -o $@ -c $?
     27
     28$(WORK_DIR)/RpAbout.o: $(SRC_DIR)/RpAbout.cc
     29        $(CPP) -fPIC $(DEBUG) $(INCL_CORE) -o $@ -c $?
Note: See TracChangeset for help on using the changeset viewer.