You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
31 lines
333 B
31 lines
333 B
4 years ago
|
class BSRRE1D_file : PhysicalFile
|
||
|
{
|
||
|
int getFoo() { return(m_foo); }
|
||
|
|
||
|
void setFoo(int foo) { m_foo = foo; }
|
||
|
|
||
|
public BSRRE1D_file() {
|
||
|
this.addFormatName("BSRRE1DF");
|
||
|
}
|
||
|
|
||
|
|
||
|
|
||
|
private int m_foo;
|
||
|
public void xxx() {
|
||
|
ahoj();
|
||
|
} // comment
|
||
|
|
||
|
|
||
|
|
||
|
public void yyy() {
|
||
|
ahoj();
|
||
|
}
|
||
|
|
||
|
|
||
|
|
||
|
/* comment 2 */
|
||
|
public void xxx() {
|
||
|
ahoj();
|
||
|
}
|
||
|
}
|