Updated test cases documentation

This commit is contained in:
Bartek Kryza
2023-01-18 21:38:37 +01:00
parent a9f793e407
commit c6bb063ef2
98 changed files with 2589 additions and 2586 deletions

View File

@@ -16,34 +16,13 @@ diagrams:
```
## Source code
File t00018_impl.h
```cpp
#pragma once
#include "t00018.h"
namespace clanguml {
namespace t00018 {
namespace impl {
class widget {
int n;
public:
void draw(const clanguml::t00018::widget &w) const;
void draw(const clanguml::t00018::widget &w);
widget(int n);
};
}
}
}
```
File t00018.h
```cpp
#pragma once
#ifndef _MSC_VER
#include <experimental/propagate_const>
#endif
#include <iostream>
#include <memory>
@@ -74,6 +53,29 @@ public:
}
}
```
File t00018_impl.h
```cpp
#pragma once
#include "t00018.h"
namespace clanguml {
namespace t00018 {
namespace impl {
class widget {
int n;
public:
void draw(const clanguml::t00018::widget &w) const;
void draw(const clanguml::t00018::widget &w);
widget(int n);
};
}
}
}
```
File t00018.cc
```cpp