Files
unison/samples/main-debug-other.cc

14 lines
235 B
C++
Raw Normal View History

2007-02-07 08:49:54 +01:00
/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
#include "ns3/debug.h"
2007-02-13 18:20:24 +01:00
NS_DEBUG_COMPONENT_DEFINE ("MyComponentB");
2007-02-07 08:49:54 +01:00
namespace foo {
void OneFunction (void)
{
2007-02-13 18:20:24 +01:00
NS_DEBUG ("OneFunction debug");
2007-02-07 08:49:54 +01:00
}
}; // namespace foo