Skip to content

Commit 2028176

Browse files
wip
Signed-off-by: Andrei-Fabian-Pop <Andreifabian.Pop@analog.com>
1 parent e76d7ab commit 2028176

File tree

9 files changed

+1251
-0
lines changed

9 files changed

+1251
-0
lines changed

iioutil/doc/iio.qmodel

Lines changed: 1191 additions & 0 deletions
Large diffs are not rendered by default.

iioutil/include/iioutil/iiocpp/iioattribute.h

Whitespace-only changes.

iioutil/include/iioutil/iiocpp/iiochannel.h

Whitespace-only changes.
Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
/*
2+
* Copyright (c) 2025 Analog Devices Inc.
3+
*
4+
* This file is part of Scopy
5+
* (see https://www.github.com/analogdevicesinc/scopy).
6+
*
7+
* This program is free software: you can redistribute it and/or modify
8+
* it under the terms of the GNU General Public License as published by
9+
* the Free Software Foundation, either version 3 of the License, or
10+
* (at your option) any later version.
11+
*
12+
* This program is distributed in the hope that it will be useful,
13+
* but WITHOUT ANY WARRANTY; without even the implied warranty of
14+
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15+
* GNU General Public License for more details.
16+
*
17+
* You should have received a copy of the GNU General Public License
18+
* along with this program. If not, see <https://www.gnu.org/licenses/>.
19+
*/
20+
21+
#ifndef IIOCONTEXT_H
22+
#define IIOCONTEXT_H
23+
24+
#include "scopy-iioutil_export.h"
25+
#include <iio.h>
26+
#include <QObject>
27+
28+
namespace scopy {
29+
class SCOPY_IIOUTIL_EXPORT IIOContext : public QObject
30+
{
31+
Q_OBJECT
32+
public:
33+
};
34+
35+
} // namespace scopy
36+
37+
#endif // IIOCONTEXT_H

iioutil/include/iioutil/iiocpp/iiodevice.h

Whitespace-only changes.

iioutil/src/iiocpp/iioattribute.cpp

Whitespace-only changes.

iioutil/src/iiocpp/iiochannel.cpp

Whitespace-only changes.

iioutil/src/iiocpp/iiocontext.cpp

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
/*
2+
* Copyright (c) 2025 Analog Devices Inc.
3+
*
4+
* This file is part of Scopy
5+
* (see https://www.github.com/analogdevicesinc/scopy).
6+
*
7+
* This program is free software: you can redistribute it and/or modify
8+
* it under the terms of the GNU General Public License as published by
9+
* the Free Software Foundation, either version 3 of the License, or
10+
* (at your option) any later version.
11+
*
12+
* This program is distributed in the hope that it will be useful,
13+
* but WITHOUT ANY WARRANTY; without even the implied warranty of
14+
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15+
* GNU General Public License for more details.
16+
*
17+
* You should have received a copy of the GNU General Public License
18+
* along with this program. If not, see <https://www.gnu.org/licenses/>.
19+
*/
20+
21+
#include "iiocpp/iiocontext.h"
22+
23+
using namespace scopy;

iioutil/src/iiocpp/iiodevice.cpp

Whitespace-only changes.

0 commit comments

Comments
 (0)