blob: d9aa123fe0c545c42ba49fd891ad28b63531cca5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
// Copyright 2008 Nanorex, Inc. See LICENSE file for details.
#include "Nanorex/Interface/NXAtomRenderData.h"
#include <openbabel/atom.h>
using namespace OpenBabel;
using namespace std;
namespace Nanorex {
NXAtomRenderData::NXAtomRenderData(unsigned int const& the_atomicNum)
: atomicNum(the_atomicNum)
{
}
} // Nanorex
|