blob: 688c97ebe257c4e57387a2deabd300c4e8ebbdd1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
// Copyright 2006-2007 Nanorex, Inc. See LICENSE file for details.
#ifndef W15_H_INCLUDED
#define W15_H_INCLUDED
#include "W1.h"
class W15: public W1
{
public:
W15(int a, int b, double c, int nshells, double sshell, int terminator);
};
#endif
|