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