algorithms

algorithms Commit Details


Date:2013-02-16 12:05:00 (11 years 10 months ago)
Author:Natalie Adams
Branch:default
Commit:6c891dee9ea8
Parents: f0f4c44c4c7b
Message:Cleaning up and adding code

Changes:
Dcpp/algorithms/main.cpp (full)
A.hgignore
Acpp/algorithms/src/Algorithm.h (full)
Acpp/algorithms/src/main.cpp (full)
Mcpp/algorithms/algorithms.vcxproj (1 diff)
Mcpp/algorithms/algorithms.vcxproj.filters (1 diff)

File differences

cpp/algorithms/algorithms.vcxproj
7474
7575
7676
77
78
79
80
7781
7882
7983
</Link>
</ItemDefinitionGroup>
<ItemGroup>
<ClCompile Include="main.cpp" />
</ItemGroup>
<ItemGroup>
<ClInclude Include="Algorithm.h" />
</ItemGroup>
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
<ImportGroup Label="ExtensionTargets">
cpp/algorithms/algorithms.vcxproj.filters
1414
1515
1616
17
18
19
20
21
22
23
24
25
26
1727
<Extensions>rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx;tiff;tif;png;wav;mfcribbon-ms</Extensions>
</Filter>
</ItemGroup>
<ItemGroup>
<ClCompile Include="main.cpp">
<Filter>Source Files</Filter>
</ClCompile>
</ItemGroup>
<ItemGroup>
<ClInclude Include="Algorithm.h">
<Filter>Header Files</Filter>
</ClInclude>
</ItemGroup>
</Project>
cpp/algorithms/main.cpp
1
2
3
4
5
6
7
8
#include <iostream>
using namespace std;
int main()
{
}
cpp/algorithms/src/Algorithm.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#ifndef ALGORITHM_H
#define ALGORITHM_H
#include <vector>
#include <string>
template <class T>
class DataAlgorithm
{
private:
std::vector<T> _container;
public:
std::string toString();
}
#endif
cpp/algorithms/src/main.cpp
1
2
3
4
5
6
7
8
#include <iostream>
using namespace std;
int main()
{
}

Archive Download the corresponding diff file

Branches

Tags

Page rendered in 0.41508s using 14 queries.