reSIProcate/stack  9694
Defines | Functions
testTypes.cxx File Reference
#include <iostream>
#include <unistd.h>
#include "rutil/Logger.hxx"
#include "resip/stack/HeaderTypes.hxx"
Include dependency graph for testTypes.cxx:

Go to the source code of this file.

Defines

#define RESIPROCATE_SUBSYSTEM   resip::Subsystem::SIP

Functions

void A ()
void B ()
int main ()

Define Documentation

Definition at line 9 of file testTypes.cxx.


Function Documentation

void A ( )

Definition at line 11 of file testTypes.cxx.

References DebugLog, resip::Headers::getHeaderName(), and resip::Headers::UNKNOWN.

Referenced by main().

{
   for(Headers::Type t = Headers::CSeq;
       t < Headers::UNKNOWN;
       ++t)
   {
      DebugLog(<< "A: "<< t << ":'" << Headers::getHeaderName(t) << "'");
   }
}

Here is the call graph for this function:

void B ( )

Definition at line 21 of file testTypes.cxx.

References DebugLog, resip::Headers::getHeaderName(), and resip::Headers::UNKNOWN.

Referenced by main().

{
   for(int t = Headers::CSeq;
       t < Headers::UNKNOWN;
       ++t)
   {
      DebugLog(<<"B: "<< t << ":'" << Headers::getHeaderName(t) << "'");
   }
}

Here is the call graph for this function:

int main ( void  )

Definition at line 31 of file testTypes.cxx.

References A(), and B().

{
   A();
   B();
}

Here is the call graph for this function: