My program is structured as follows:
Classe.cpp // Implementing class methods
Classe.hpp // Class prototypes
Main.cpp // Main file
In my file Classe.hpp I have the prototype a friend function:...
This is the code
if (otherpages == 2)
{
ImGui::Columns(2, nullptr, false);
ImGui::Checkbox("Enable Medal Changer", &Settings::MedalChanger::enabled);
static int medal_id = 0;
ImGui::InputInt("Medal ID", &medal_id);...
I'm having this error while compiling
Severity Code Description Project File Line Suppression State
Error (active) E1696 Can not open source file "d3dx9.h"
INDIGO
c: \ Users \ spirit \ Documents \ C ++ \ SOUTHERN \ INDIGO \ INDIGO \...
I'm trying to compile a project, but this error is showing up:
Gravidade Código Descrição Projeto Arquivo Linha Estado de Supressão
Erro MSB8036 The Windows SDK version 10.0.15063.0 was not found. Install the required version of Wind...
When compiling the algorithm with g ++, I got the following problem:
CMakeFiles / libTest.dir / source / mainDaMalha.cpp.o: in function
CriteriosDeParada::test_method()': mainDaMalha.cpp:(.text+0x1840f):
referência indefinida para...
I have this function in the header of my .dll:
void calculo(vector<double> A, vector<int> B, double &Ans1, double jj);
in .cpp it is defined as follows
void calculo(vector<double> A, vector<int> B, double &...
I'm using list in c ++, and in what I think the structure of the inner one should contain:
Content
pointer to next element
Is it possible to put one more variable within this structure, as the example below?
Content
variabl...
I have a function that comes from a .lib that returns me a struct
tabela GSTV(vector<double> inpA, vector<double> inpB);
This struct is defined as follows:
struct tabela {
vector<int> Z;
vector<double> F;...