blob: 7adeba47221e8b93d47c0c425caedc868b76de81 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2011, 2013 Ericsson AB and others.
*
* All rights reserved. This program and the accompanying materials are
* made available under the terms of the Eclipse Public License v1.0 which
* accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
******************************************************************************/
//This is a test file used by the R4E UI Test framework
class extModNoCommitFile {
public:
extModNoCommitFile() {}
bool getSomeBool() {
return someBool;
}
void setSomeBool(bool someBool) {
this.someBool = someBool;
}
private:
bool someBool;
};
int main() {
extModNoCommitFile test = new extModNoCommitFile();
test.setSomeBool(1);
int testBool = test.getSomeInt();
delete test;
}