Changeset 449

Show
Ignore:
Timestamp:
09/01/09 16:52:42 (15 years ago)
Author:
trnewman
Message:

Added timestamp in OSSIE demo, probably should make this a common thing for all CBRs. Added configs directory to Makefile.am for packaging purposes.

Location:
vtcross/trunk/src
Files:
2 modified

Legend:

Unmodified
Added
Removed
  • vtcross/trunk/src/cognitive_engines/OSSIE_DEMO_CE/cbr.c

    r417 r449  
    129129            strcat(_cbr->command, ", "); 
    130130    } 
    131     strcat(_cbr->command, ");"); 
     131    strcat(_cbr->command, ", timestamp DATE);"); 
    132132 
    133133    // execute create table command 
     
    220220            strcat(_cbr->command, " AND "); 
    221221        else 
    222             strcat(_cbr->command, " order by utility desc;"); 
     222            strcat(_cbr->command, " order by utility, timestamp desc );"); 
    223223    } 
    224224 
     
    257257            strcat(_cbr->command, ", "); 
    258258    } 
     259    
     260    strcat(_cbr->command, "timestamp = DATETIME('NOW')"); 
     261     
    259262    strcat(_cbr->command, " WHERE "); 
    260263 
  • vtcross/trunk/src/shell/Makefile.am

    r411 r449  
    1616 
    1717INCLUDES = -I$(top_srcdir)/src/include 
    18  
     18SUBDIRS = configs 
    1919AM_CXXFLAGS = -Wall -g 
    2020