Move \ingroup onto same line to be more compact and make it clear the file is in the group.
28 lines
614 B
C++
28 lines
614 B
C++
/** \file \ingroup elbeem
|
|
*/
|
|
/******************************************************************************
|
|
*
|
|
* El'Beem - Free Surface Fluid Simulation with the Lattice Boltzmann Method
|
|
* All code distributed as part of El'Beem is covered by the version 2 of the
|
|
* GNU General Public License. See the file COPYING for details.
|
|
* Copyright 2003-2006 Nils Thuerey
|
|
*
|
|
* Control API header
|
|
*/
|
|
|
|
#include "elbeem.h"
|
|
#include "elbeem_control.h"
|
|
|
|
// add mesh as fluidsim object
|
|
int elbeemControlAddSet(struct elbeemControl*) {
|
|
|
|
return 0;
|
|
}
|
|
|
|
int elbeemControlComputeMesh(struct elbeemMesh*) {
|
|
|
|
|
|
return 0;
|
|
}
|
|
|