Use CamelCase for all names. Start types (such as classes, structs, and typedefs) with a capital letter, other names (functions, variables) with a lowercase letter.

Class: 
class NewContainer 
{
public:

	NewContainer();
	
	int getMeshEntities();
	int var();
	
private:
	int var;
}	
	
File names should be same as the main class they contain

All files should include header:

/*******************************************************
 * Copyright (C) 2017-2020 CENOS Ltd vg@cenos-platform.com
 * 
 * This file is part of CENOS.
 * 
 * CENOS can not be copied and/or distributed without the express
 * permission of CENOS Ltd
 *******************************************************/
 
 
 Prefer using Doxygen comments
 
 For class:
/**
*  @brief     Example class.
*  @details   This class does wonderful things.
*  @author    Gandalf
*  @date      Sep 26, 1985
*  @copyright CENOS LLC
*/

For functions:
	/** @brief what function does
	* @param a - first parameter is ...
	* @param b - second parameter is ...
	* @return what return is
	*/
	int function(float a, int b);


For variables:
	/// Holds connection handler
	websocketpp::connection_hdl hdl_
	

Use "const" for any value, that not meant to be changed.