File: module-template.txt

package info (click to toggle)
intrusive-shared-ptr 1.6-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 412 kB
  • sloc: cpp: 2,852; ansic: 173; makefile: 3
file content (23 lines) | stat: -rw-r--r-- 484 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
/*
 Copyright 2024 Eugene Gershnik

 Use of this source code is governed by a BSD-style
 license that can be found in the LICENSE file or at
 https://github.com/gershnik/intrusive_shared_ptr/blob/master/LICENSE.txt
*/
module;

##SYS_INCLUDES##

export module isptr;

#define ISPTR_EXPORTED export 

#include "intrusive_shared_ptr.h"
#include "ref_counted.h"
#include "apple_cf_ptr.h"
#include "com_ptr.h"
#if ISPTR_ENABLE_PYTHON
#include "python_ptr.h"
#endif
#include "refcnt_ptr.h"