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.
39 lines
343 B
39 lines
343 B
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();
|
|
}
|
|
}
|