blob: 28d01b5446176fb2bcff1aeacc3a7eca29366468 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
/* -*- C++ -*- */
//=============================================================================
/**
* @file Widget.cpp
*
* $Id$
*
* @author Christopher Kohlhoff <chris@kohlhoff.com>
*/
//=============================================================================
#include "Widget.h"
Widget::~Widget (void)
{
}
|