#include <time.h> #include "linkedts.h" LinkedTS::LinkedTS( time_t ats ) { ts = ats; pnext = 0; } time_t LinkedTS::GetTS() { return ts; } LinkedTS *LinkedTS::GetPNext() { return pnext; } void LinkedTS::SetPNext( LinkedTS *apnext ) { pnext = apnext; }
# | Change | User | Description | Committed | |
---|---|---|---|---|---|
#1 | 5389 | Shawn Hladky | Branching p4loga for modifications | ||
//guest/michael_shields/src/p4loga/linkedts.cc | |||||
#1 | 1610 | Michael Shields |
Adding p4d log analyzer concocted by myself. Compiles and executes on Red Hat 6.0, 7.0, and probably a few other operating systems with perhaps a little help. Still needs comments. |